/**
 * Eric Meyer's Reset CSS v2.0 (http://meyerweb.com/eric/tools/css/reset/)
 * http://cssreset.com
 */
 @font-face {
    font-family: "苹方-简";
    src: url("./苹方-准.otf");
  }
 html, body, div, span, applet, object, iframe,
 h1, h2, h3, h4, h5, h6, p, blockquote, pre,
 a, abbr, acronym, address, big, cite, code,
 del, dfn, em, img, ins, kbd, q, s, samp,
 small, strike, strong, sub, sup, tt, var,
 b, u, i, center,
 dl, dt, dd, ol, ul, li,
 fieldset, form, label, legend,
 table, caption, tbody, tfoot, thead, tr, th, td,
 article, aside, canvas, details, embed,
 figure, figcaption, footer, header,
 menu, nav, output, ruby, section, summary,
 time, mark, audio, video, input {
     margin: 0;
     padding: 0;
     border: 0;
     /* font-size: 100%;
     font-weight: normal;
     vertical-align: baseline; */
 }
 
 /* HTML5 display-role reset for older browsers */
 article, aside, details, figcaption, figure,
 footer, header, menu, nav, section {
     display: block;
 }
 
 body {
    font: 14px/1  'Microsoft YaHei', "Lucida Grande", "Lucida Sans Unicode", "Helvetica", "Arial", "Verdana", "sans-serif";
     /* line-height: 1;
     font-size:14px; */
     min-width: 1200px;
     max-width: 1920px;
     margin:0 auto;
     /* overflow-x: scroll; */
 }
 *{
     box-sizing: border-box;
 }
 
 blockquote, q {
     quotes: none;
 }
 
 blockquote:before, blockquote:after,
 q:before, q:after {
     content: none;
 }
 
 table {
     border-collapse: collapse;
     border-spacing: 0;
 }
 
 /* custom */
 a {
     color: #7e8c8d;
     text-decoration: none;
     -webkit-backface-visibility: hidden;
 }
 
 li {
     list-style: none;
 }
 input{
     border:none;
     background:transparent;
     outline: none;
 }
 i,span,em,a,label{
     display: inline-block;
     font-style: normal;
 }
 button{
     outline: none;
     border:none;
     background:transparent;
 }
 /*清除浮动*/
 .clearfix {
   *zoom: 1;
 }
 .clearfix:after {
   content: '.';
   display: block;
   height: 0;
   clear: both;
   visibility: hidden;
 }
 .fl{
     float: left;
 }
 .fr{
     float: right
 }
 .ft-12{
     font-size:12px;
 }
 .ft-16{
     font-size:16px;
 }
 .ft-18{
     font-size:18px;
 }
 .c-3{
     color:#333;
 }
 .c-4{
     color:#444;
 }
 .c-6{
     color:#666;
 }
 .c-9{
     color:#999;
 }
 .c-f{
     color:#fff;
 }
 .tc{
     text-align: center;
 }
 
